home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / povscn / level1 / pov / blob < prev    next >
Text File  |  1995-11-08  |  624b  |  30 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Alexander Enzmann
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. camera {
  8.    location  <0, 0, -5>
  9.    direction <0, 0, 1.2071>
  10.    look_at   <0, 0, 0>
  11. }
  12.  
  13. light_source { <-15, 30, -25> color red 1 green 1 blue 1 }
  14. light_source { < 15, 30, -25> color red 1 green 1 blue 1 }
  15.  
  16. blob {
  17.    threshold 0.6
  18.    component 1.0, 1.0, <0.75, 0, 0>
  19.    component 1.0, 1.0, <-0.375, 0.64952, 0>
  20.    component 1.0, 1.0, <-0.375, -0.64952, 0>
  21.  
  22.    pigment { color red 1 green 0 blue 0 }
  23.    finish {
  24.       ambient 0.2
  25.       diffuse 0.8
  26.       phong 1
  27.    }
  28.    rotate 30*y
  29. }
  30.